home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / freemacs.arc / MINTLAST.ASM < prev    next >
Assembly Source File  |  1988-03-17  |  409b  |  26 lines

  1. code    segment    public
  2.     public    lastcode
  3. lastcode    label    byte
  4. code    ends
  5.  
  6. data    segment public
  7.  
  8.     db    -1            ;any non-zero value will do here.
  9.  
  10.     public    OUTPATSIZE, outpat, INPATSIZE, inpat
  11. OUTPATSIZE    equ    100
  12. outpat        db    OUTPATSIZE dup(?)
  13. INPATSIZE    equ    256
  14. inpat        db    INPATSIZE dup(?)    ;lots of room.
  15.  
  16.     public    stackp
  17.     db    256 dup(?)
  18. stackp    label    byte
  19.  
  20.     public    lomem
  21. lomem    label    byte
  22.  
  23. data    ends
  24.  
  25.     end
  26.